
.eco-faqx,
.eco-faqx *{
  box-sizing:border-box;
}

.eco-faqx{
  --faq-bg:#071018;
  --faq-card:#101a25;
  --faq-card-2:#0d151f;
  --faq-line:rgba(255,255,255,.105);
  --faq-line-2:rgba(255,255,255,.18);
  --faq-green:#6DDA7A;
  --faq-green-2:#8FE19A;
  --faq-green-3:#3FAE55;
  --faq-text:rgba(255,255,255,.94);
  --faq-muted:rgba(255,255,255,.68);
  --faq-soft:rgba(255,255,255,.46);
  --faq-shadow:0 24px 70px rgba(0,0,0,.32);
  color:var(--faq-text);
  font-family:"Montserrat",system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  position:relative;
  isolation:isolate;
}

.eco-faqx::before{
  content:"";
  position:absolute;
  inset:-40px -20px auto;
  height:240px;
  pointer-events:none;
  z-index:-1;
  background:
    radial-gradient(circle at 12% 20%, rgba(109,218,122,.13), transparent 34%),
    radial-gradient(circle at 88% 0%, rgba(120,150,255,.08), transparent 30%);
}

.eco-faqx__wrap{
  width:100%;
  max-width:1500px;
  margin:0 auto;
}

.eco-faqx__top{
  position:relative;
  display:grid;
  gap:18px;
  margin-bottom:22px;
  padding:28px;
  border:1px solid var(--faq-line);
  border-radius:30px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.016)),
    linear-gradient(180deg, #101923, #0a1119);
  box-shadow:var(--faq-shadow);
  overflow:hidden;
}

.eco-faqx__top::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    linear-gradient(90deg, rgba(109,218,122,.12), transparent 35%),
    radial-gradient(circle at 100% 0%, rgba(143,225,154,.10), transparent 32%);
}

.eco-faqx__h2{
  position:relative;
  z-index:1;
  margin:0;
  color:#fff;
  font-family:"Exo","Montserrat",system-ui,sans-serif;
  font-size:clamp(28px,3vw,46px);
  font-weight:900;
  line-height:1.04;
  letter-spacing:-.045em;
}

.eco-faqx__h2::before{
  content:"FAQ";
  display:inline-flex;
  align-items:center;
  min-height:28px;
  margin-right:10px;
  padding:0 10px;
  border:1px solid rgba(143,225,154,.24);
  border-radius:999px;
  background:rgba(143,225,154,.10);
  color:#ddffe2;
  font:900 10px/1 "Exo","Montserrat",system-ui,sans-serif;
  letter-spacing:.12em;
  vertical-align:middle;
}

.eco-faqx__searchRow{
  position:relative;
  z-index:1;
  width:100%;
}

.eco-faqx__search{
  width:100%;
  height:58px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.02)),
    #080f16;
  color:#fff;
  padding:0 170px 0 52px;
  font-size:15px;
  font-weight:700;
  outline:none;
  transition:border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.eco-faqx__searchRow::before{
  content:"";
  position:absolute;
  z-index:2;
  left:20px;
  top:50%;
  width:16px;
  height:16px;
  transform:translateY(-50%);
  border:2px solid rgba(143,225,154,.80);
  border-radius:50%;
  box-shadow:8px 8px 0 -6px rgba(143,225,154,.80);
}

.eco-faqx__search::placeholder{
  color:rgba(255,255,255,.38);
  font-weight:600;
}

.eco-faqx__search:focus{
  border-color:rgba(143,225,154,.42);
  background:#0b131c;
  box-shadow:
    0 0 0 4px rgba(109,218,122,.10),
    0 16px 42px rgba(0,0,0,.22);
}

.eco-faqx__searchHint{
  position:absolute;
  z-index:2;
  right:12px;
  top:50%;
  transform:translateY(-50%);
  display:inline-flex;
  align-items:center;
  min-height:34px;
  padding:0 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.045);
  color:rgba(255,255,255,.52);
  font:800 11px/1 "Exo","Montserrat",system-ui,sans-serif;
  letter-spacing:.05em;
  text-transform:uppercase;
}

.eco-faqx__chips{
  position:relative;
  z-index:1;
  display:flex;
  flex-wrap:wrap;
  gap:9px;
}

.eco-faqx__chip{
  min-height:36px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.11);
  background:rgba(255,255,255,.04);
  color:rgba(255,255,255,.72);
  padding:0 13px;
  font:850 12px/1 "Exo","Montserrat",system-ui,sans-serif;
  cursor:pointer;
  transition:transform .18s ease, color .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

.eco-faqx__chip.is-active{
  color:#071008;
  border-color:rgba(143,225,154,.50);
  background:linear-gradient(180deg, var(--faq-green-2), var(--faq-green));
  box-shadow:0 14px 30px rgba(109,218,122,.18);
}

@media (hover:hover) and (pointer:fine){
  .eco-faqx__chip:hover{
    transform:translateY(-1px);
    color:#fff;
    border-color:rgba(255,255,255,.22);
    background:rgba(255,255,255,.075);
  }

  .eco-faqx__chip.is-active:hover{
    color:#071008;
    background:linear-gradient(180deg, #a6f3ae, var(--faq-green));
  }
}

.eco-faqx__chip:focus-visible,
.eco-faqx__search:focus-visible,
.eco-faqx__q:focus-visible,
.eco-faqx__btn:focus-visible{
  outline:2px solid rgba(143,225,154,.76);
  outline-offset:3px;
}

.eco-faqx__grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) 380px;
  gap:22px;
  align-items:start;
}

.eco-faqx__list{
  display:grid;
  gap:12px;
  counter-reset:faqItem;
}

.eco-faqx__item{
  counter-increment:faqItem;
  position:relative;
  border:1px solid var(--faq-line);
  border-radius:22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.036), rgba(255,255,255,.012)),
    linear-gradient(180deg, var(--faq-card), var(--faq-card-2));
  box-shadow:0 16px 48px rgba(0,0,0,.24);
  overflow:hidden;
  opacity:1;
  transform:translateY(0);
  transition:opacity .18s ease, transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

.eco-faqx__item::before{
  content:"";
  position:absolute;
  inset:0 auto 0 0;
  width:4px;
  background:linear-gradient(180deg, transparent, rgba(143,225,154,.66), transparent);
  opacity:.30;
  transition:opacity .18s ease, width .18s ease;
}

.eco-faqx__item[open]{
  border-color:rgba(143,225,154,.24);
  background:
    radial-gradient(circle at 100% 0%, rgba(143,225,154,.08), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,.042), rgba(255,255,255,.016)),
    linear-gradient(180deg, #111f1a, #0c131c);
  box-shadow:
    0 20px 58px rgba(0,0,0,.30),
    inset 0 0 0 1px rgba(143,225,154,.05);
}

.eco-faqx__item[open]::before{
  width:5px;
  opacity:1;
}

.eco-faqx__item.is-filtered{
  opacity:0;
  transform:translateY(8px);
  pointer-events:none;
}

.eco-faqx__item.is-hidden{
  display:none !important;
}

.eco-faqx__q{
  position:relative;
  list-style:none;
  min-height:76px;
  display:grid;
  grid-template-columns:auto minmax(0,1fr) auto;
  align-items:center;
  gap:14px;
  padding:18px 20px 20px;
  cursor:pointer;
  color:#fff;
  font-family:"Exo","Montserrat",system-ui,sans-serif;
  font-size:18px;
  font-weight:900;
  line-height:1.22;
}

.eco-faqx__q::-webkit-details-marker{
  display:none;
}

.eco-faqx__q::before{
  content:counter(faqItem, decimal-leading-zero);
  width:42px;
  height:42px;
  border-radius:999px;
  display:grid;
  place-items:center;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.045);
  color:rgba(255,255,255,.54);
  font:900 12px/1 "Exo","Montserrat",system-ui,sans-serif;
  transition:background .18s ease, color .18s ease, border-color .18s ease;
}

.eco-faqx__item[open] .eco-faqx__q::before{
  color:#061107;
  border-color:rgba(143,225,154,.48);
  background:linear-gradient(180deg, var(--faq-green-2), var(--faq-green));
}

.eco-faqx__qText{
  min-width:0;
  transition:color .18s ease, text-shadow .18s ease;
}

.eco-faqx__item[open] .eco-faqx__qText{
  color:#fff;
  text-shadow:0 0 24px rgba(143,225,154,.12);
}

.eco-faqx__chev{
  width:34px;
  height:34px;
  border-radius:999px;
  display:grid;
  place-items:center;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(0,0,0,.18);
  opacity:1;
  transform:none;
  transition:transform .18s ease, border-color .18s ease, background .18s ease;
}

.eco-faqx__chev::before{
  content:"";
  width:9px;
  height:9px;
  border-right:2px solid rgba(255,255,255,.72);
  border-bottom:2px solid rgba(255,255,255,.72);
  transform:rotate(45deg) translate(-1px,-1px);
  transition:transform .18s ease, border-color .18s ease;
}

.eco-faqx__item[open] .eco-faqx__chev{
  border-color:rgba(143,225,154,.26);
  background:rgba(143,225,154,.10);
  transform:rotate(180deg);
}

.eco-faqx__item[open] .eco-faqx__chev::before{
  border-color:var(--faq-green-2);
}

.eco-faqx__rail{
  position:absolute;
  left:76px;
  right:20px;
  bottom:10px;
  height:2px;
  border-radius:999px;
  background:linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,.42), rgba(255,255,255,0));
  opacity:.34;
  transform-origin:center;
  pointer-events:none;
  transition:opacity .18s ease, background .18s ease, transform .18s ease;
}

.eco-faqx__item[open] .eco-faqx__rail{
  opacity:.95;
  background:linear-gradient(90deg, transparent, var(--faq-green-2), var(--faq-green-3), transparent);
}

.eco-faqx__aWrap{
  overflow:hidden;
  max-height:0;
  opacity:0;
  transform:translateY(-4px);
  transition:max-height .28s ease, opacity .22s ease, transform .22s ease;
  will-change:max-height;
}

.eco-faqx__item[open] .eco-faqx__aWrap{
  max-height:var(--eco-aH, 760px);
  opacity:1;
  transform:translateY(0);
}

.eco-faqx__item.is-closing .eco-faqx__aWrap{
  transition:max-height var(--eco-close-ms,220ms) ease, opacity var(--eco-close-ms,220ms) ease, transform var(--eco-close-ms,220ms) ease;
}

.eco-faqx__a{
  padding:0 24px 22px 76px;
  color:rgba(255,255,255,.70);
  font-size:15px;
  font-weight:500;
  line-height:1.72;
}

.eco-faqx__a p{
  margin:10px 0 0;
}

.eco-faqx__a p:first-child{
  margin-top:0;
}

.eco-faqx__a strong{
  color:#fff;
  font-weight:850;
}

.eco-faqx__a ul{
  display:grid;
  gap:7px;
  margin:12px 0 0;
  padding:0;
  list-style:none;
}

.eco-faqx__a li{
  position:relative;
  margin:0;
  padding-left:20px;
}

.eco-faqx__a li::before{
  content:"";
  position:absolute;
  left:0;
  top:.72em;
  width:7px;
  height:7px;
  border-radius:999px;
  background:linear-gradient(180deg, var(--faq-green-2), var(--faq-green));
  box-shadow:0 0 0 4px rgba(109,218,122,.10);
}

@media (hover:hover) and (pointer:fine){
  .eco-faqx__item:hover{
    transform:translateY(-2px);
    border-color:var(--faq-line-2);
    box-shadow:0 20px 56px rgba(0,0,0,.30);
  }

  .eco-faqx__item:hover .eco-faqx__rail{
    opacity:.64;
  }

  .eco-faqx__q:hover .eco-faqx__chev{
    border-color:rgba(255,255,255,.20);
    background:rgba(255,255,255,.06);
  }
}

.eco-faqx__side{
  position:sticky;
  top:22px;
}

.eco-faqx__sideCard{
  position:relative;
  padding:22px;
  border:1px solid var(--faq-line);
  border-radius:26px;
  background:
    radial-gradient(circle at 100% 0%, rgba(143,225,154,.10), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.014)),
    linear-gradient(180deg, #101923, #0a1119);
  box-shadow:var(--faq-shadow);
  overflow:hidden;
}

.eco-faqx__sideCard::before{
  content:"";
  position:absolute;
  inset:auto 0 0;
  height:4px;
  background:linear-gradient(90deg, transparent, var(--faq-green-2), transparent);
  opacity:.80;
}

.eco-faqx__sideTitle{
  margin:0 0 10px;
  color:#fff;
  font:900 22px/1.08 "Exo","Montserrat",system-ui,sans-serif;
  letter-spacing:-.025em;
}

.eco-faqx__sideText{
  color:rgba(255,255,255,.68);
  font-size:14px;
  line-height:1.65;
  font-weight:500;
}

.eco-faqx__sideBtns{
  display:grid;
  gap:10px;
  margin-top:18px;
}

.eco-faqx__btn{
  position:relative;
  min-height:48px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(255,255,255,.12);
  border-radius:16px;
  background:rgba(255,255,255,.045);
  color:#fff;
  text-decoration:none;
  overflow:hidden;
  padding:0 14px;
  font:900 13px/1 "Exo","Montserrat",system-ui,sans-serif;
  transition:transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

.eco-faqx__btn--primary{
  color:#061107;
  border-color:rgba(143,225,154,.44);
  background:linear-gradient(180deg, var(--faq-green-2), var(--faq-green));
  box-shadow:0 16px 34px rgba(109,218,122,.18);
}

.eco-faqx__btn--ghost{
  color:rgba(255,255,255,.78);
  background:rgba(0,0,0,.18);
}

.eco-faqx__btnRail{
  position:absolute;
  left:14px;
  right:14px;
  bottom:9px;
  height:2px;
  border-radius:999px;
  background:linear-gradient(90deg, transparent, rgba(6,17,7,.70), transparent);
  opacity:.60;
}

@media (hover:hover) and (pointer:fine){
  .eco-faqx__btn:hover{
    transform:translateY(-1px);
    border-color:rgba(255,255,255,.22);
    background:rgba(255,255,255,.07);
  }

  .eco-faqx__btn--primary:hover{
    color:#061107;
    border-color:rgba(143,225,154,.62);
    background:linear-gradient(180deg, #a6f3ae, var(--faq-green));
  }
}

@media (max-width:1024px){
  .eco-faqx__grid{
    grid-template-columns:1fr;
  }

  .eco-faqx__side{
    position:relative;
    top:auto;
  }
}

@media (max-width:767px){
  .eco-faqx__top{
    padding:18px;
    border-radius:22px;
  }

  .eco-faqx__h2{
    font-size:26px;
  }

  .eco-faqx__search{
    height:52px;
    padding:0 14px 0 46px;
    font-size:13px;
  }

  .eco-faqx__searchHint{
    display:none;
  }

  .eco-faqx__chips{
    flex-wrap:nowrap;
    overflow-x:auto;
    padding-bottom:4px;
    scroll-snap-type:x proximity;
  }

  .eco-faqx__chips::-webkit-scrollbar{
    height:0;
  }

  .eco-faqx__chip{
    flex:0 0 auto;
    scroll-snap-align:start;
    min-height:34px;
    font-size:11px;
  }

  .eco-faqx__list{
    gap:10px;
  }

  .eco-faqx__item{
    border-radius:18px;
  }

  .eco-faqx__q{
    min-height:68px;
    grid-template-columns:36px minmax(0,1fr) 30px;
    gap:11px;
    padding:15px 15px 18px;
    font-size:16px;
  }

  .eco-faqx__q::before{
    width:34px;
    height:34px;
    font-size:10px;
  }

  .eco-faqx__chev{
    width:30px;
    height:30px;
  }

  .eco-faqx__rail{
    left:62px;
    right:15px;
  }

  .eco-faqx__a{
    padding:0 16px 17px 62px;
    font-size:14px;
    line-height:1.62;
  }

  .eco-faqx__sideCard{
    padding:18px;
    border-radius:20px;
  }
}

@media (max-width:460px){
  .eco-faqx__q{
    grid-template-columns:1fr 30px;
  }

  .eco-faqx__q::before{
    display:none;
  }

  .eco-faqx__rail{
    left:15px;
  }

  .eco-faqx__a{
    padding-left:16px;
  }
}

@media (prefers-reduced-motion:reduce){
  .eco-faqx__item,
  .eco-faqx__aWrap,
  .eco-faqx__chip,
  .eco-faqx__btn,
  .eco-faqx__chev{
    transition:none !important;
  }
}
